86b7fe3aa73d48372bddb22086c69ea965bb6d3f,src/com/redhat/ceylon/compiler/java/codegen/BoxingDeclarationVisitor.java,BoxingDeclarationVisitor,visit,#AnyMethod#,50
Before Change
// deal with invalid input
if(refinedMethod == null)
return;
if(isPrimitive(method, refinedMethod)) {
Util.markUnBoxed(method);
Util.markUnBoxed(refinedMethod);
}
List<ParameterList> methodParameterLists = method.getParameterLists();
List<ParameterList> refinedParameterLists = refinedMethod.getParameterLists();
After Change
// deal with invalid input
if(refinedMethod == null)
return;
setBoxingState(method, refinedMethod);
List<ParameterList> methodParameterLists = method.getParameterLists();
List<ParameterList> refinedParameterLists = refinedMethod.getParameterLists();
// deal with invalid input